home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / September 93.iso / Archives / Sound / MIDI / MIDI Utilities / CMU Midi Toolkit / Includes / midibuff.h < prev    next >
Text File  |  1987-01-16  |  287b  |  9 lines

  1. /* midibuff.h -- defines the size of the midi input buffer */
  2.  
  3. /* midi input buffer */
  4. /* WARNING: BUFF_SIZE must be a power of 2 so we can use masking to wrap */
  5. #define EVENT_COUNT 128
  6. #define EVENT_SIZE 4
  7. #define BUFF_SIZE (EVENT_COUNT * EVENT_SIZE)
  8. #define BUFF_MASK (BUFF_SIZE - 1)
  9.